home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo ╔══════════════════════════════════════════════════════════╗
- echo ║ WASP - README DISPLAY UTILITY ║
- echo ╠══════════════════════════════════════════════════════════╣
- echo ║ ║
- echo ║ 1 - Display README on the screen ║
- echo ║ ║
- echo ║ 2 - Make a hard copy of README on the printer ║
- echo ║ ║
- echo ║ Q - Quit to DOS ║
- echo ║ ║
- echo ║ ║
- echo ║ Press the key of your choice ║
- echo ║ ║
- echo ╚══════════════════════════════════════════════════════════╝
- GetResp 12Q
- if errorlevel 3 goto exit
- if errorlevel 2 goto hardcopy
- view readme.
- goto exit
- :hardcopy
- cls
- echo Please make sure your printer is ready
- pause
- copy readme. prn:
- :exit